home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / listings / v_12_03 / allison / surprise.c < prev    next >
C/C++ Source or Header  |  1994-01-05  |  223b  |  12 lines

  1.  
  2. LISTING 7 - Preprocessed source with a surprise
  3. main()
  4. {
  5. int SURPRISE! = 1, x2 = 2, x3 = 3;
  6. printf("x1" " = %" "d" "\n",SURPRISE!);
  7. printf("x2" " = %" "d" "\n",x2);
  8. printf("x3" " = %" "d" "\n",x3);
  9. return 0;
  10. }
  11.  
  12.